home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / programs / mouse / mousestep / !MouseStep / !Help < prev    next >
Encoding:
Text File  |  1991-03-23  |  2.2 KB  |  66 lines

  1.  
  2.  * Name    - MouseStep                 *
  3.  * Purpose - Mouse sensitivity editor  *
  4.  * Author  - © Alexander Buckley, 1991 *
  5.  * Version - 2.00 (23-Mar-91)          *
  6.  
  7. -------------------------------------------------------
  8.  
  9. Overview
  10. --------
  11.  
  12.    MouseStep is a little multi-tasking program which allows you to change the
  13. mouse sensitivity from the Desktop, rather than having to go into BASIC and
  14. type MOUSE STEP xxx, which I find rather irritating!
  15.  
  16.  
  17. Operation
  18. ---------
  19.  
  20.    All you have to do is click over the icon on the icon bar with the <MENU>
  21. mouse button, and select the Sensitivity submenu. Then just type in your
  22. required sensitivity and press <RETURN>.
  23.  
  24. NOTE - The setting you type in is not saved to CMOS RAM, and therefore is not
  25.        retained when you do a <CTRL-BREAK> or <RESET> (it reverts to the 
  26.        setting in CMOS RAM).
  27.  
  28.  
  29. Technical details
  30. -----------------
  31.  
  32.    MouseStep works by taking the number from the writable submenu, operating
  33. on it to get the actual value, and passing that to OS_Word as follows -
  34.  
  35.    mouse%?0 = 2 (the OS_Word parameter)
  36.    mouse%?1 = the specified value
  37.    mouse%?2 = the specified value
  38.  
  39.    Both the BASIC "MOUSE STEP" command and this OS call (BASIC does call
  40. this, after all) allow you to specify two parameters - one for the x factor
  41. and one for the y factor. So you could say MOUSE STEP 5,1, which would mean
  42. that the ratio of x movement to y movement would be 5:1. It is achieved
  43. simply by giving different parameters for the OS_Word call and different
  44. numbers for the MOUSE STEP command. I decided against having this feature,
  45. because most of the time, you will want the x movement to be the same as the
  46. y movement, and it would confuse first-time users. Sorry.
  47.  
  48.    MouseStep v.2 is a compiled C program, unlike v.1, which was a MakeApp-ed
  49. BASIC program.
  50.  
  51.  
  52. Thanks
  53. ------
  54.  
  55.    Big thanks go to - Craig Brown, for working out how to de-MakeApp a
  56.                       program which had previously been MakeApp-ed.
  57.  
  58.                       Tim Simmons, for noticing that clicking on Select over
  59.                       the icon on the icon bar crashed the program! This,
  60.                       however, was in a pre-release version, but thanks all
  61.                       the same, Tim!
  62.  
  63.  
  64. Alexander Buckley
  65. 23 March 1991
  66.